body {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: maiden-orange, serif;
}

.timer {
    margin: 0;
}

.std-container {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    flex-direction: column;
    font-family: maiden-orange, serif;
    font-size: x-large;
}

.outer-container {
    height: 100%;
    padding: 10%;
}

.reset {
    background-color: skyblue
}

.start {
    background-color: lightgreen;
}

.stop {
    background-color: indianred;
}

.btn-container {
    margin-top: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 80%;
}

.std-btn {
    cursor: pointer;
    background: floralwhite;
    padding: 20px;
    border-radius: 37px;
}